type go/types.typeWriter

15 uses

	go/types (current package)
		typestring.go#L70: type typeWriter struct {
		typestring.go#L81: func newTypeWriter(buf *bytes.Buffer, qf Qualifier) *typeWriter {
		typestring.go#L82: 	return &typeWriter{buf, make(map[Type]bool), qf, nil, nil, true, false, false}
		typestring.go#L85: func newTypeHasher(buf *bytes.Buffer, ctxt *Context) *typeWriter {
		typestring.go#L87: 	return &typeWriter{buf, make(map[Type]bool), nil, ctxt, nil, false, false, false}
		typestring.go#L90: func (w *typeWriter) byte(b byte) {
		typestring.go#L104: func (w *typeWriter) string(s string) {
		typestring.go#L108: func (w *typeWriter) error(msg string) {
		typestring.go#L115: func (w *typeWriter) typ(typ Type) {
		typestring.go#L361: func (w *typeWriter) typeSet(s *_TypeSet) {
		typestring.go#L396: func (w *typeWriter) typeList(list []Type) {
		typestring.go#L407: func (w *typeWriter) tParamList(list []*TypeParam) {
		typestring.go#L436: func (w *typeWriter) typeName(obj *TypeName) {
		typestring.go#L441: func (w *typeWriter) tuple(tup *Tuple, variadic bool) {
		typestring.go#L476: func (w *typeWriter) signature(sig *Signature) {